home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Programmation / jedit / jedit5.1.0install.exe / {app} / macros / Editing / Open_Line_Above.bsh < prev    next >
Text File  |  2013-07-28  |  309b  |  10 lines

  1. /** Open_Line_Above.bsh: 
  2.     mimics the Ctrl-Shift-Enter combination in Eclipse,
  3.     opening a new blank line above the current cursor position.
  4.     Author: Scott LeBaron
  5.     License: GPL v 2.0
  6. */
  7. textArea.goToStartOfWhiteSpace(false);
  8. textArea.insertEnterAndIndent();
  9. textArea.goToPrevLine(false);
  10.